runtime.mSpanList.last (field)

12 uses

	runtime (current package)
		mheap.go#L392: 	last  *mspan // last span in list, or nil if none
		mheap.go#L1729: 	list.last = nil
		mheap.go#L1743: 	if list.last == span {
		mheap.go#L1744: 		list.last = span.prev
		mheap.go#L1769: 		list.last = span
		mheap.go#L1780: 	span.prev = list.last
		mheap.go#L1781: 	if list.last != nil {
		mheap.go#L1783: 		list.last.next = span
		mheap.go#L1788: 	list.last = span
		mheap.go#L1809: 		other.last.next = list.first
		mheap.go#L1810: 		list.first.prev = other.last
		mheap.go#L1814: 	other.first, other.last = nil, nil